SureTax Returns API
GET EnrichedTaxItems
Overview
Fetch enriched tax items including reporting authority and detailed tax information based on filters such as reporting entity, company code, fiscal year, and date range.
OperationId: GET EnrichedTaxItems
Authorization Method(s): OAuth
Verb: GET
End Point: /api/v1/Forms/EnrichedTaxItems
| Display String | Field Name | Field Type |
|---|---|---|
| External Reporting Entity* | externalReportingEntity | string |
| Selection From Date* | selectionFromDate | string |
| Selection To Date* | selectionToDate | string |
| Taxable Item Id List | taxableItemIdList | string |
| Limit | limit | string |
| Offset | offset | string |
Overview
Example Response
{
"data": [
{
"taxDocumentNumber": "ETX304 2",
"materialGroupClassification": "ELECTRONICS",
"materialClassification": "LAPTOPS",
"reportingData": [
{
"reportingAuthority": "StateTaxBoard",
"taxJurisdictionCode": "CA-SF",
"state": "CA",
"taxingDetails": [
{
"taxItemId": "1",
"authorityLevel": "State",
"taxAuthority": "California Department of Tax and Fee Administration",
"taxName": "CA Sales Tax",
"baseAmount": 1200.50,
"taxRate": 0.075,
"taxAmount": 90.04,
"exemptAmount": 0.00,
"exemptReasonCode": null,
"exemptReason": null
},
{
"taxItemId": "2",
"authorityLevel": "Local",
"taxAuthority": "San Francisco County",
"taxName": "Local Sales Tax",
"baseAmount": 1200.50,
"taxRate": 0.025,
"taxAmount": 30.01,
"exemptAmount": 0.00,
"exemptReasonCode": null,
"exemptReason": null
}
]
}
]
}
]
}| code | description |
|---|---|
| 200 | Success Response - 200 OK. Returns enriched tax data for the given input. |
| 400 | Bad Request - The server could not process the request due to invalid input or missing required parameters. |
| 401 | 401 Unauthorized: The user's authentication is not valid. |
| 500 | Internal Server Error - An unexpected error occurred on the server while processing the request. |